home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / TUTORIAL.BIN / Statement.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-01-30  |  1.1 KB  |  40 lines

  1. package symjava.sql;
  2.  
  3. public interface Statement {
  4.    ResultSet executeQuery(String var1) throws SQLException;
  5.  
  6.    int executeUpdate(String var1) throws SQLException;
  7.  
  8.    void close() throws SQLException;
  9.  
  10.    int getMaxFieldSize() throws SQLException;
  11.  
  12.    void setMaxFieldSize(int var1) throws SQLException;
  13.  
  14.    int getMaxRows() throws SQLException;
  15.  
  16.    void setMaxRows(int var1) throws SQLException;
  17.  
  18.    void setEscapeProcessing(boolean var1) throws SQLException;
  19.  
  20.    int getQueryTimeout() throws SQLException;
  21.  
  22.    void setQueryTimeout(int var1) throws SQLException;
  23.  
  24.    void cancel() throws SQLException;
  25.  
  26.    SQLWarning getWarnings() throws SQLException;
  27.  
  28.    void clearWarnings() throws SQLException;
  29.  
  30.    void setCursorName(String var1) throws SQLException;
  31.  
  32.    boolean execute(String var1) throws SQLException;
  33.  
  34.    ResultSet getResultSet() throws SQLException;
  35.  
  36.    int getUpdateCount() throws SQLException;
  37.  
  38.    boolean getMoreResults() throws SQLException;
  39. }
  40.